The template has a small failure, its looking strange if you're board has different width and cellspacing/cellpadding values. <br /> <br />To correct this take this template: <br /> <br />---- <br /><? <br />echo <<<template <br />$tbopen <br /> <br /><tr> <br /><td class="tdheader"> <br />Board Rules <br /></td> <br /></tr> <br />$tbclose <br /> <br />$tbopen <br /><tr> <br /><td class="lighttable"> <br />template; <br /> $rules = @file("{$config['path']}/includes/boardrules.php"); <br /> if (!is_array($rules)) { <br /> $rules = @file("{config['phpurl']}/includes/boardrules.php"); <br /> } <br /> if ($rules) { <br /> while(list($linenum,$line) = each($rules)) { <br /> $boardrules .= $line; <br /> } <br /> } <br />echo $boardrules; <br />echo <<<template <br /></td> <br /></tr> <br />$tbclose <br /> <br /><br /><br /> <br />template; <br />?> <br /> <br /> <br />------ <br />Don't know why the original was looking so strange but after comparing it with the viewprivacy.tmpl the above lines came out and are working... <br /> <br />To see the difference I have an example for you: <br />
WRONG (The contact us form has not the right size. Within this example its only a few pixels but this may depend on your theme settings) <br /> <br />
RIGHT (The Boardrules have the correct width everytime, no matter what you put in your settings it will fit) <br /> <br />Check it out, I will fix this in the Examples within the next days <img src="/forum/images/graemlins/laugh.gif" alt="" /> <br />